home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 79 / maccd 79.iso / multimedial / GL Tron / Source / Project / rsrc / gltron_resources.r next >
Encoding:
C/C++ Source or Header  |  2001-07-20  |  1.2 KB  |  63 lines  |  [TEXT/CWIE]

  1. /* gltron_resources.r */
  2.  
  3. /*
  4.     NOTE: this file needs macintosh linefeeds (\r) to work with Rez!
  5. */
  6.  
  7. #ifndef __TYPES_R__
  8. #include "Types.r"
  9. #endif
  10.  
  11. #ifndef __BALLOONS_R__
  12. #include "Balloons.r"
  13. #endif
  14.  
  15. #define VERSION_MAJOR         0
  16. #define VERSION_MINOR         6
  17. #define REVISION                 0
  18.  
  19. #define STATE                    development        /* development | alpha | beta | release */
  20. #define RELEASE_NO             6          /* number after letter, or zero for release */
  21. #define COUNTRY                  verUS
  22.  
  23. #define VERSION_STRING         "0.6d6"
  24.  
  25. #define NAME                          "GL Tron"
  26. #define SHORT_DESCRIPTION        "GL Tron by Andreas Umbach"
  27. #define LONG_DESCRIPTION        "Programming by Andreas Umbach.\n\nMacintosh port by Darrell Walisser.\n\nOriginal icons by Nicolas Zimmermann.\n\nhttp://www.gltron.org"
  28.  
  29. resource 'vers' (1) {
  30.     VERSION_MAJOR,
  31.     (VERSION_MINOR << 4) | REVISION,
  32.     STATE,
  33.     RELEASE_NO,
  34.     COUNTRY,
  35.     VERSION_STRING,
  36.     VERSION_STRING
  37. };
  38.  
  39. resource 'vers' (2) {
  40.     VERSION_MAJOR,
  41.     (VERSION_MINOR << 4) | REVISION,
  42.     STATE,
  43.     RELEASE_NO,
  44.     COUNTRY,
  45.     VERSION_STRING,
  46.   SHORT_DESCRIPTION
  47. };
  48.  
  49. /* Finder help balloon */
  50. resource 'hfdr' (kHMHelpID) {
  51.     HelpMgrVersion,
  52.     hmDefaultOptions,
  53.     0,
  54.     0,
  55.     {    
  56.         HMStringItem
  57.         {
  58.             NAME "\n\n"
  59.                 LONG_DESCRIPTION
  60.         }
  61.     }
  62.     
  63. };